]> git.deb.at Git - pkg/beep.git/commitdiff
New patch fix-makefile to make make clean not fail
authorRhonda D'Vine <rhonda@deb.at>
Tue, 12 Apr 2016 12:04:20 +0000 (14:04 +0200)
committerRhonda D'Vine <rhonda@deb.at>
Tue, 12 Apr 2016 12:04:20 +0000 (14:04 +0200)
debian/changelog
debian/patches/fix-makefile [new file with mode: 0644]
debian/patches/series

index 5cb0ccf2712d294c2a6cfe6fdc0fa1fcc9ebcb02..fe7ae691e6885734a82ee2ec103590f04c1e6985 100644 (file)
@@ -3,6 +3,7 @@ beep (1.3-4) unstable; urgency=low
   * Update my name.
   * Bump Standards-Version to 3.9.6.
   * Switch to source format 3.0 (quilt).
+  * New patch fix-makefile to make make clean not fail.
   * Add #DEBHELPER# to post{inst,rm} files.
 
  -- 
diff --git a/debian/patches/fix-makefile b/debian/patches/fix-makefile
new file mode 100644 (file)
index 0000000..22095e4
--- /dev/null
@@ -0,0 +1,16 @@
+Author: Rhonda D'Vine <rhonda@debian.org>
+Description: make the make clean not fail if the binary isn't there
+
+Index: VCS/Makefile
+===================================================================
+--- VCS.orig/Makefile  2016-01-04 13:32:23.518723192 +0100
++++ VCS/Makefile       2016-01-17 12:50:49.026997125 +0100
+@@ -8,7 +8,7 @@
+ default : beep
+ clean : 
+-      rm ${EXEC_NAME}
++      -rm ${EXEC_NAME}
+ beep : beep.c
+       ${CC} ${FLAGS} -o ${EXEC_NAME} beep.c
index b3e33f380f74e485b88f4f4776be0d6901622b9b..2c1d9d638116e7263dfc4353c44b03f697867433 100644 (file)
@@ -1 +1,2 @@
 catch-sig-term
+fix-makefile